>
Defined in Type: QueryablePatternSystem.Reactive.Joins
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public QueryablePlan<TResult> Then<TResult>(Expression<Func<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6, TResult>> selector)
Summary: Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
Type parameters
| Name | Description |
|---|---|
TResult | The type of the elements in the result sequence, returned by the selector function. |
Parameters
| Name | Type | Description |
|---|---|---|
selector | Expression | Selector that will be invoked for elements in the source sequences. |
Returns: QueryablePlan
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | selector is null. |